home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / RCS / tcp_var.h,v < prev    next >
Text File  |  1988-06-29  |  9KB  |  272 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.06.29.15.11.38;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.21.11.59.33;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Add ifdefs to keep files from being processed twice.
  26. @
  27. text
  28. @/*
  29.  * Copyright (c) 1982, 1986 Regents of the University of California.
  30.  * All rights reserved.
  31.  *
  32.  * Redistribution and use in source and binary forms are permitted
  33.  * provided that this notice is preserved and that due credit is given
  34.  * to the University of California at Berkeley. The name of the University
  35.  * may not be used to endorse or promote products derived from this
  36.  * software without specific prior written permission. This software
  37.  * is provided ``as is'' without express or implied warranty.
  38.  *
  39.  *    @@(#)tcp_var.h    7.7 (Berkeley) 2/27/88
  40.  */
  41.  
  42. #ifndef _TCP_VAR
  43. #define _TCP_VAR
  44.  
  45. /*
  46.  * TCP configuration:  This is a half-assed attempt to make TCP
  47.  * self-configure for a few varieties of 4.2 and 4.3-based unixes.
  48.  * If you don't have a) a 4.3bsd vax or b) a 3.x Sun (x<6), check
  49.  * this carefully (it's probably not right).  Please send me mail
  50.  * if you run into configuration problems.
  51.  *  - Van Jacobson (van@@lbl-csam.arpa)
  52.  */
  53.  
  54. #ifndef BSD
  55. #define BSD 42    /* if we're not 4.3, pretend we're 4.2 */
  56. #define OLDSTAT    /* set if we have to use old netstat binaries */
  57. #endif
  58.  
  59. /* #define OLDSTAT    /* set if we have to use old netstat binaries */
  60.  
  61. #if sun || BSD < 43
  62. #define TCP_COMPAT_42    /* set if we have to interop w/4.2 systems */
  63. #endif
  64.  
  65. #ifndef SB_MAX
  66. #ifdef    SB_MAXCOUNT
  67. #define    SB_MAX    SB_MAXCOUNT    /* Sun has to be a little bit different... */
  68. #else
  69. #define SB_MAX    32767        /* XXX */
  70. #endif    SB_MAXCOUNT
  71. #endif    SB_MAX
  72.  
  73. #ifndef IP_MAXPACKET
  74. #define    IP_MAXPACKET    65535        /* maximum packet size */
  75. #endif
  76.  
  77. /*
  78.  * Bill Nowicki pointed out that the page size (CLBYTES) has
  79.  * nothing to do with the mbuf cluster size.  So, we followed
  80.  * Sun's lead and made the new define MCLBYTES stand for the mbuf
  81.  * cluster size.  The following define makes up backwards compatible
  82.  * with 4.3 and 4.2.  If CLBYTES is >1024 on your machine, check
  83.  * this against the mbuf cluster definitions in /usr/include/sys/mbuf.h.
  84.  */
  85. #ifndef MCLBYTES
  86. #define    MCLBYTES CLBYTES    /* XXX */
  87. #endif
  88.  
  89. /*
  90.  * The routine in_localaddr is broken in Sun's 3.4.  We redefine ours
  91.  * (in tcp_input.c) so we use can it but won't have a name conflict.
  92.  */
  93. #ifdef sun
  94. #define in_localaddr tcp_in_localaddr
  95. #endif
  96.  
  97. /* --------------- end of TCP config ---------------- */
  98.  
  99. /*
  100.  * Kernel variables for tcp.
  101.  */
  102.  
  103. /*
  104.  * Tcp control block, one per tcp; fields:
  105.  */
  106. struct tcpcb {
  107.     struct    tcpiphdr *seg_next;    /* sequencing queue */
  108.     struct    tcpiphdr *seg_prev;
  109.     short    t_state;        /* state of this connection */
  110.     short    t_timer[TCPT_NTIMERS];    /* tcp timers */
  111.     short    t_rxtshift;        /* log(2) of rexmt exp. backoff */
  112.     short    t_rxtcur;        /* current retransmit value */
  113.     short    t_dupacks;        /* consecutive dup acks recd */
  114.     u_short    t_maxseg;        /* maximum segment size */
  115.     char    t_force;        /* 1 if forcing out a byte */
  116.     u_char    t_flags;
  117. #define    TF_ACKNOW    0x01        /* ack peer immediately */
  118. #define    TF_DELACK    0x02        /* ack, but try to delay it */
  119. #define    TF_NODELAY    0x04        /* don't delay packets to coalesce */
  120. #define    TF_NOOPT    0x08        /* don't use tcp options */
  121. #define    TF_SENTFIN    0x10        /* have sent FIN */
  122.     struct    tcpiphdr *t_template;    /* skeletal packet for transmit */
  123.     struct    inpcb *t_inpcb;        /* back pointer to internet pcb */
  124. /*
  125.  * The following fields are used as in the protocol specification.
  126.  * See RFC783, Dec. 1981, page 21.
  127.  */
  128. /* send sequence variables */
  129.     tcp_seq    snd_una;        /* send unacknowledged */
  130.     tcp_seq    snd_nxt;        /* send next */
  131.     tcp_seq    snd_up;            /* send urgent pointer */
  132.     tcp_seq    snd_wl1;        /* window update seg seq number */
  133.     tcp_seq    snd_wl2;        /* window update seg ack number */
  134.     tcp_seq    iss;            /* initial send sequence number */
  135.     u_short    snd_wnd;        /* send window */
  136. /* receive sequence variables */
  137.     u_short    rcv_wnd;        /* receive window */
  138.     tcp_seq    rcv_nxt;        /* receive next */
  139.     tcp_seq    rcv_up;            /* receive urgent pointer */
  140.     tcp_seq    irs;            /* initial receive sequence number */
  141. /*
  142.  * Additional variables for this implementation.
  143.  */
  144. /* receive variables */
  145.     tcp_seq    rcv_adv;        /* advertised window */
  146. /* retransmit variables */
  147.     tcp_seq    snd_max;        /* highest sequence number sent
  148.                      * used to recognize retransmits
  149.                      */
  150. /* congestion control (for slow start, source quench, retransmit after loss) */
  151.     u_short    snd_cwnd;        /* congestion-controlled window */
  152.     u_short snd_ssthresh;        /* snd_cwnd size threshhold for
  153.                      * for slow start exponential to
  154.                      * linear switch */
  155. /*
  156.  * transmit timing stuff.
  157.  * srtt and rttvar are stored as fixed point; for convenience in smoothing,
  158.  * srtt has 3 bits to the right of the binary point, rttvar has 2.
  159.  * "Variance" is actually smoothed difference.
  160.  */
  161.     short    t_idle;            /* inactivity time */
  162.     short    t_rtt;            /* round trip time */
  163.     tcp_seq    t_rtseq;        /* sequence number being timed */
  164.     short    t_srtt;            /* smoothed round-trip time */
  165.     short    t_rttvar;        /* variance in round-trip time */
  166.     u_short max_rcvd;        /* most peer has sent into window */
  167.     u_short    max_sndwnd;        /* largest window peer has offered */
  168. /* out-of-band data */
  169.     char    t_oobflags;        /* have some */
  170.     char    t_iobc;            /* input character */
  171. #define    TCPOOB_HAVEDATA    0x01
  172. #define    TCPOOB_HADDATA    0x02
  173. };
  174.  
  175. #define    intotcpcb(ip)    ((struct tcpcb *)(ip)->inp_ppcb)
  176. #define    sototcpcb(so)    (intotcpcb(sotoinpcb(so)))
  177.  
  178. /*
  179.  * TCP statistics.
  180.  * Many of these should be kept per connection,
  181.  * but that's inconvenient at the moment.
  182.  */
  183. struct    tcpstat {
  184. #ifdef OLDSTAT
  185.     /*
  186.      * Declare statistics the same as in 4.3
  187.      * at the start of tcpstat (same size and
  188.      * position) for netstat.
  189.      */
  190.     int    tcps_rcvbadsum;
  191.     int    tcps_rcvbadoff;
  192.     int    tcps_rcvshort;
  193.     int    tcps_badsegs;
  194.     int    tcps_unack;
  195. #define    tcps_badsum    tcps_rcvbadsum
  196. #define    tcps_badoff    tcps_rcvbadoff
  197. #define    tcps_hdrops    tcps_rcvshort
  198.  
  199. #endif OLDSTAT
  200.     u_long    tcps_connattempt;    /* connections initiated */
  201.     u_long    tcps_accepts;        /* connections accepted */
  202.     u_long    tcps_connects;        /* connections established */
  203.     u_long    tcps_drops;        /* connections dropped */
  204.     u_long    tcps_conndrops;        /* embryonic connections dropped */
  205.     u_long    tcps_closed;        /* conn. closed (includes drops) */
  206.     u_long    tcps_segstimed;        /* segs where we tried to get rtt */
  207.     u_long    tcps_rttupdated;    /* times we succeeded */
  208.     u_long    tcps_delack;        /* delayed acks sent */
  209.     u_long    tcps_timeoutdrop;    /* conn. dropped in rxmt timeout */
  210.     u_long    tcps_rexmttimeo;    /* retransmit timeouts */
  211.     u_long    tcps_persisttimeo;    /* persist timeouts */
  212.     u_long    tcps_keeptimeo;        /* keepalive timeouts */
  213.     u_long    tcps_keepprobe;        /* keepalive probes sent */
  214.     u_long    tcps_keepdrops;        /* connections dropped in keepalive */
  215.  
  216.     u_long    tcps_sndtotal;        /* total packets sent */
  217.     u_long    tcps_sndpack;        /* data packets sent */
  218.     u_long    tcps_sndbyte;        /* data bytes sent */
  219.     u_long    tcps_sndrexmitpack;    /* data packets retransmitted */
  220.     u_long    tcps_sndrexmitbyte;    /* data bytes retransmitted */
  221.     u_long    tcps_sndacks;        /* ack-only packets sent */
  222.     u_long    tcps_sndprobe;        /* window probes sent */
  223.     u_long    tcps_sndurg;        /* packets sent with URG only */
  224.     u_long    tcps_sndwinup;        /* window update-only packets sent */
  225.     u_long    tcps_sndctrl;        /* control (SYN|FIN|RST) packets sent */
  226.  
  227.     u_long    tcps_rcvtotal;        /* total packets received */
  228.     u_long    tcps_rcvpack;        /* packets received in sequence */
  229.     u_long    tcps_rcvbyte;        /* bytes received in sequence */
  230. #ifndef OLDSTAT
  231.     u_long    tcps_rcvbadsum;        /* packets received with ccksum errs */
  232.     u_long    tcps_rcvbadoff;        /* packets received with bad offset */
  233.     u_long    tcps_rcvshort;        /* packets received too short */
  234. #endif
  235.     u_long    tcps_rcvduppack;    /* duplicate-only packets received */
  236.     u_long    tcps_rcvdupbyte;    /* duplicate-only bytes received */
  237.     u_long    tcps_rcvpartduppack;    /* packets with some duplicate data */
  238.     u_long    tcps_rcvpartdupbyte;    /* dup. bytes in part-dup. packets */
  239.     u_long    tcps_rcvoopack;        /* out-of-order packets received */
  240.     u_long    tcps_rcvoobyte;        /* out-of-order bytes received */
  241.     u_long    tcps_rcvpackafterwin;    /* packets with data after window */
  242.     u_long    tcps_rcvbyteafterwin;    /* bytes rcvd after window */
  243.     u_long    tcps_rcvafterclose;    /* packets rcvd after "close" */
  244.     u_long    tcps_rcvwinprobe;    /* rcvd window probe packets */
  245.     u_long    tcps_rcvdupack;        /* rcvd duplicate acks */
  246.     u_long    tcps_rcvacktoomuch;    /* rcvd acks for unsent data */
  247.     u_long    tcps_rcvackpack;    /* rcvd ack packets */
  248.     u_long    tcps_rcvackbyte;    /* bytes acked by rcvd acks */
  249.     u_long    tcps_rcvwinupd;        /* rcvd window update packets */
  250. };
  251.  
  252. #ifdef KERNEL
  253. struct    inpcb tcb;        /* head of queue of active tcpcb's */
  254. struct    tcpstat tcpstat;    /* tcp statistics */
  255. struct    tcpiphdr *tcp_template();
  256. struct    tcpcb *tcp_close(), *tcp_drop();
  257. struct    tcpcb *tcp_timers(), *tcp_disconnect(), *tcp_usrclosed();
  258. #endif
  259.  
  260. #endif _TCP_VAR
  261. @
  262.  
  263.  
  264. 1.1
  265. log
  266. @Initial revision
  267. @
  268. text
  269. @d15 3
  270. d232 2
  271. @
  272.